Binary ADT Operations
Select an operation to begin.
Code Interface (Python-like)
class BinaryTree(Tree):
def left(self, p): ...
def right(self, p): ...
def set_left(self, p, val): ...
def set_right(self, p, val): ...
def left(self, p): ...
def right(self, p): ...
def set_left(self, p, val): ...
def set_right(self, p, val): ...